home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Ebooks / Thinking in C++ V2 / C26 / all.makefile next >
Encoding:
Makefile  |  2000-05-25  |  3.1 KB  |  113 lines

  1. # From Thinking in C++, 2nd Edition
  2. # At http://www.BruceEckel.com
  3. # (c) Bruce Eckel 1999
  4. # Copyright notice in Copyright.txt
  5. # Automatically-generated MAKEFILE 
  6. # For examples in directory C26
  7. # using the all compiler
  8. # Note: does not make files that will 
  9. # not compile with this compiler
  10. # Invoke with: make -f all.makefile
  11.  
  12. .SUFFIXES : .obj .cpp .c
  13. .cpp.obj :
  14.     $(CPP) $(CPPFLAGS) -c $<
  15. .c.obj :
  16.     $(CPP) $(CPPFLAGS) -c $<
  17.  
  18. all: \
  19.     ExtractCode.exe \
  20.     Tracetst.exe \
  21.     MemTest.exe \
  22.     CGI_GET.exe \
  23.     CGI_POST.exe \
  24.     mlm.exe \
  25.     RemoveDuplicates.exe \
  26.     RemoveGroup.exe \
  27.     ExtractUndeliverable.exe \
  28.     Batchmail.exe \
  29.     ExtractInfo.exe \
  30.     FormDump.exe \
  31.     ProcessApplication.exe \
  32.     DataToSpreadsheet.exe 
  33.  
  34. test: all 
  35.     ExtractCode.exe  
  36.     Tracetst.exe  
  37.     MemTest.exe  
  38.     CGI_GET.exe  
  39.     CGI_POST.exe  
  40.     mlm.exe  
  41.     RemoveDuplicates.exe  
  42.     RemoveGroup.exe  
  43.     ExtractUndeliverable.exe  
  44.     Batchmail.exe  
  45.     ExtractInfo.exe  
  46.     FormDump.exe  
  47.     ProcessApplication.exe  
  48.     DataToSpreadsheet.exe  
  49.  
  50. bugs: 
  51.     @echo No compiler bugs in this directory!
  52.  
  53. ExtractCode.exe: ExtractCode.obj 
  54.     $(CPP) $(OFLAG)ExtractCode.exe ExtractCode.obj 
  55.  
  56. Tracetst.exe: Tracetst.obj 
  57.     $(CPP) $(OFLAG)Tracetst.exe Tracetst.obj 
  58.  
  59. MemTest.exe: MemTest.obj MemCheck.obj 
  60.     $(CPP) $(OFLAG)MemTest.exe MemTest.obj MemCheck.obj 
  61.  
  62. CGI_GET.exe: CGI_GET.obj 
  63.     $(CPP) $(OFLAG)CGI_GET.exe CGI_GET.obj 
  64.  
  65. CGI_POST.exe: CGI_POST.obj 
  66.     $(CPP) $(OFLAG)CGI_POST.exe CGI_POST.obj 
  67.  
  68. mlm.exe: mlm.obj 
  69.     $(CPP) $(OFLAG)mlm.exe mlm.obj 
  70.  
  71. RemoveDuplicates.exe: RemoveDuplicates.obj 
  72.     $(CPP) $(OFLAG)RemoveDuplicates.exe RemoveDuplicates.obj 
  73.  
  74. RemoveGroup.exe: RemoveGroup.obj 
  75.     $(CPP) $(OFLAG)RemoveGroup.exe RemoveGroup.obj 
  76.  
  77. ExtractUndeliverable.exe: ExtractUndeliverable.obj 
  78.     $(CPP) $(OFLAG)ExtractUndeliverable.exe ExtractUndeliverable.obj 
  79.  
  80. Batchmail.exe: Batchmail.obj 
  81.     $(CPP) $(OFLAG)Batchmail.exe Batchmail.obj 
  82.  
  83. ExtractInfo.exe: ExtractInfo.obj 
  84.     $(CPP) $(OFLAG)ExtractInfo.exe ExtractInfo.obj 
  85.  
  86. FormDump.exe: FormDump.obj FormData.obj 
  87.     $(CPP) $(OFLAG)FormDump.exe FormDump.obj FormData.obj 
  88.  
  89. ProcessApplication.exe: ProcessApplication.obj FormData.obj 
  90.     $(CPP) $(OFLAG)ProcessApplication.exe ProcessApplication.obj FormData.obj 
  91.  
  92. DataToSpreadsheet.exe: DataToSpreadsheet.obj FormData.obj 
  93.     $(CPP) $(OFLAG)DataToSpreadsheet.exe DataToSpreadsheet.obj FormData.obj 
  94.  
  95.  
  96. ExtractCode.obj: ExtractCode.cpp 
  97. Tracetst.obj: Tracetst.cpp ..\require.h Trace.h 
  98. MemCheck.obj: MemCheck.cpp 
  99. MemTest.obj: MemTest.cpp MemCheck.h 
  100. CGI_GET.obj: CGI_GET.cpp CGImap.h 
  101. CGI_POST.obj: CGI_POST.cpp CGImap.h 
  102. mlm.obj: mlm.cpp CGImap.h 
  103. RemoveDuplicates.obj: RemoveDuplicates.cpp readLower.h ..\require.h 
  104. RemoveGroup.obj: RemoveGroup.cpp readLower.h ..\require.h 
  105. ExtractUndeliverable.obj: ExtractUndeliverable.cpp ..\require.h 
  106. Batchmail.obj: Batchmail.cpp ..\require.h 
  107. ExtractInfo.obj: ExtractInfo.cpp CGImap.h 
  108. FormData.obj: FormData.cpp FormData.h ..\require.h 
  109. FormDump.obj: FormDump.cpp FormData.h ..\require.h 
  110. ProcessApplication.obj: ProcessApplication.cpp FormData.h ..\require.h 
  111. DataToSpreadsheet.obj: DataToSpreadsheet.cpp FormData.h ..\require.h 
  112.  
  113.